===========================================================
		PERSONALIZING TEXT
===========================================================

All of the text strings used in this OXP are defined in the missiontext.plist configuration file, and the player can safely customize them there without it affecting the operation of the OXP in any way.

===========================================================
		INTERFACE FUNCTIONS FOR OTHER OXPs
===========================================================

Other scripts can call these functions:-

  worldScripts["Explorers Club"]._playerRank("chart")

Returns the number of systems the player has visited on the current chart.

  worldScripts["Explorers Club"]._playerRank("total")

Returns the total number of systems the player has visited on all eight charts.

  worldScripts["Explorers Club"]._playerRank("rank")

Returns a text string, e.g. "Novice Explorer" or "Master Explorer". Might be localized, so use the "total" or "chart" numbers to discern the player's experience, and the "rank" string only for insertion into dialogues.

  worldScripts["Explorers Club"]._playerVisited(galaxy, sysID)

Returns true or false, depending on whether or not the player has visited the given system since installing Explorers' Club. E.g.

  worldScripts["Explorers Club"]._playerVisited(0, 7)

returns false if there is no record of the player visiting Lave. 

===========================================================
			EXPLORERS' CLUB OXP

Created by Karl Smith ("Wildeblood"), June, 2013.
Based on an earlier work of the same name:- 

author:      "Capt. Murphy"
copyright:   2011, 2012 Steve Murphy
licence:     "CC BY-NC-SA 3.0"
description: Worldscript to record unique systems visited.
===========================================================
